home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / programming / e / powerd0.06 / modules / exec / semaphores.m < prev    next >
Text File  |  1999-11-30  |  352b  |  29 lines

  1. MODULE    'exec/lists',
  2.             'exec/nodes',
  3.             'exec/ports',
  4.             'exec/tasks'
  5.  
  6. OBJECT SSR
  7.     MLN:MLN,
  8.     Waiter:PTR TO TC
  9.  
  10. OBJECT SS
  11.     LN:LN,
  12.     NestCount:INT,
  13.     WaitQueue:MLH,
  14.     MultipleLink:SSR,
  15.     Owner:PTR TO TC,
  16.     QueueCount:INT
  17.  
  18. OBJECT SemaphoreMessage
  19.     MN:MN,
  20.     Semaphore:PTR TO SS
  21.  
  22. OBJECT SM
  23.     MP:MP,
  24.     Bids:INT
  25.  
  26. CONST    SM_LOCKMSG=16,
  27.         SM_SHARED=1,
  28.         SM_EXCLUSIVE=0
  29.